home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / graphics / pov2doc.zip / CHARS.POV < prev    next >
Text File  |  1993-07-28  |  3KB  |  92 lines

  1. #include "shapes.inc"
  2. #include "colors.inc"
  3. #include "textures.inc"
  4. #include "chars.inc"
  5.  
  6. // Camera definition
  7. camera { 
  8.   location <0, 0, -500> 
  9.   direction <0, 0, 10>
  10.   look_at z*0
  11.  
  12. plane {z,3 pigment{checker color Yellow color White}}
  13.  
  14. light_source { <200, 200, -500> color White }
  15.  
  16. #default {pigment{Cyan}}
  17.  
  18. #declare ColWide=5
  19. #declare Col1=-22
  20. #declare Col2=Col1+ColWide
  21. #declare Col3=Col2+ColWide
  22. #declare Col4=Col3+ColWide
  23. #declare Col5=Col4+ColWide
  24. #declare Col6=Col5+ColWide
  25. #declare Col7=Col6+ColWide
  26. #declare Col8=Col7+ColWide
  27. #declare Col9=Col8+ColWide
  28. #declare Col10=Col9+ColWide
  29.  
  30. #declare Row1=18
  31. #declare Row2=11
  32. #declare Row3= 4
  33. #declare Row4=-3
  34. #declare Row5=-10
  35. #declare Row6=-17
  36.  
  37. object {char_A translate <Col1,Row1,0>}
  38. object {char_B translate <Col2,Row1,0>}
  39. object {char_C translate <Col3,Row1,0>}
  40. object {char_D translate <Col4,Row1,0>}
  41. object {char_E translate <Col5,Row1,0>}
  42. object {char_F translate <Col6,Row1,0>}
  43. object {char_G translate <Col7,Row1,0>}
  44. object {char_H translate <Col8,Row1,0>}
  45. object {char_I translate <Col9,Row1,0>}
  46. object {char_J translate <Col10,Row1,0>}
  47.  
  48. object {char_K translate <Col1,Row2,0>}
  49. object {char_L translate <Col2,Row2,0>}
  50. object {char_M translate <Col3,Row2,0>}
  51. object {char_N translate <Col4,Row2,0>}
  52. object {char_O translate <Col5,Row2,0>}
  53. object {char_P translate <Col6,Row2,0>}
  54. object {char_Q translate <Col7,Row2,0>}
  55. object {char_R translate <Col8,Row2,0>}
  56. object {char_S translate <Col9,Row2,0>}
  57. object {char_T translate <Col10,Row2,0>}
  58.  
  59. object {char_U translate <Col1,Row3,0>}
  60. object {char_V translate <Col2,Row3,0>}
  61. object {char_W translate <Col3,Row3,0>}
  62. object {char_X translate <Col4,Row3,0>}
  63. object {char_Y translate <Col5,Row3,0>}
  64. object {char_Z translate <Col6,Row3,0>}
  65. object {char_0 translate <Col7,Row3,0>}
  66. object {char_1 translate <Col8,Row3,0>}
  67. object {char_2 translate <Col9,Row3,0>}
  68. object {char_3 translate <Col10,Row3,0>}
  69.  
  70. object {char_4 translate <Col1,Row4,0>}
  71. object {char_5 translate <Col2,Row4,0>}
  72. object {char_6 translate <Col3,Row4,0>}
  73. object {char_7 translate <Col4,Row4,0>}
  74. object {char_8 translate <Col5,Row4,0>}
  75. object {char_9 translate <Col6,Row4,0>}
  76. object {char_Dash translate <Col7,Row4,0>}
  77. object {char_Plus translate <Col8,Row4,0>}
  78. object {char_ExclPt translate <Col9,Row4,0>}
  79. object {char_AtSign translate <Col10,Row4,0>}
  80.  
  81. object {char_Num  translate <Col1,Row5,0>}
  82. object {char_Dol  translate <Col2,Row5,0>}
  83. object {char_Perc translate <Col3,Row5,0>}
  84. object {char_Hat  translate <Col4,Row5,0>}
  85. object {char_Amps translate <Col5,Row5,0>}
  86. object {char_Astr translate <Col6,Row5,0>}
  87. object {char_LPar translate <Col7,Row5,0>}
  88. object {char_RPar translate <Col8,Row5,0>}
  89. object {char_LSqu translate <Col9,Row5,0>}
  90. object {char_RSqu translate <Col10,Row5,0>}
  91.